CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 二叉树 遍历

搜索资源列表

  1. haffman

    0下载:
  2. 一个哈夫曼编码和译码程序 1、掌握树、森林和二叉树的概念和它们的特性以及它们之间是怎样相互转换的,理解二叉树的三种遍历:先序遍历、中序遍历和后序遍历,和树的两种遍历:先序遍历和后序遍历。 2、理解二叉树的基本运算算法实现以及它的非递归运算算法和层次遍历算法,了解二叉树的线索化及其它的应用。 3、掌握树和二叉树的几种存储结构以及它的构造,学会使用二叉链表实现二叉树的存储验证和设计相关算法。 -A Huffman encoding and decoding procedures fo
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:161833
    • 提供者:jingjing
  1. thinghua

    0下载:
  2. 二叉树和图的一些操作:求图最小生成树(两个算法),二叉树的线索化遍历等。-some functions in binarytree and graphics
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:1261
    • 提供者:独孤龙
  1. binarytreealgorithms

    0下载:
  2. 二叉树的各种算法,插入、删除、查找和遍历-Binary tree algorithms, insert, delete, search and traversal, etc.
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:2452
    • 提供者:start
  1. a3

    0下载:
  2. 关于二叉树的C语言编程,描述了二叉树的建立以及二叉树的遍历-On the binary tree of C language programming, described the establishment as well as binary tree binary tree traversal
  3. 所属分类:CSharp

    • 发布日期:2017-03-30
    • 文件大小:602
    • 提供者:飞鸟
  1. thetree

    0下载:
  2. 二叉树的遍历,包括先序、中序、后序的各种遍历方法的实现-Binary tree traversal, including the first order, the order, the order of implementation of the various traversal methods
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:848
    • 提供者:葛宁宁
  1. binaryTree

    0下载:
  2. 本程序用二叉树类实现了从键盘输入二叉树的两种遍历结果,在内存中建立二叉链表,根据遍历结果恢复该二叉树,并在屏幕上显示该二叉树。整个程序采用多文件,一个头文件,一个函数实现文件,以及主函数所在文件。-The program uses a binary tree class implements a binary tree from two keyboard traversal results in memory to create the binary list, according to res
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:288309
    • 提供者:姚丽文
  1. shuyuerchashu

    0下载:
  2. (1)输入字符序列,建立二叉链表。 (2)先序,中序,后序遍历二叉树:递归算法。 (3)中序遍历二叉树:非递归算法(最好也能实现先序,后序非递归算法)。 (4)求二叉树的高度 。 (5)求二叉树的叶子个数。 (6)对于树中每一个元素值为x的结点,删去以它为根的子树,并释放相应的空间。 (7)借助队列实现二叉树的层次遍历。 -shu yu er cha shu
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1963
    • 提供者:杨杨
  1. Binary_Tree

    2下载:
  2. 根据二叉树的抽象数据类型的定义,使用二叉链表实现一个二叉树。 二叉树的基本功能: 1、二叉树的建立 2、前序遍历二叉树 3、中序遍历二叉树 4、后序遍历二叉树 5、按层序遍历二叉树 6、求二叉树的深度 7、求指定结点到根的路径 8、二叉树的销毁 -According to the abstract data type binary definition, use two forks to implement a binary tree
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-12-17
    • 文件大小:577997
    • 提供者:tryqtyl
  1. bianli

    0下载:
  2. 二叉树的遍历,先序建立二叉树结构,包括前序、中序、后序遍历的递归和非递归遍历,求二叉树的深度。-Binary tree traversal, binary tree structure, the establishment of the first order, including the former order, in order, after traversing the recursive and non recursive traversal, find the depth of a
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:252650
    • 提供者:南风雅
  1. BeenTree

    0下载:
  2. 使用java语言编写实现二叉树的遍历,供大家分享!-been tree
  3. 所属分类:Java Develop

    • 发布日期:2017-04-03
    • 文件大小:1597
    • 提供者:Mrxie
  1. java1

    0下载:
  2. 程序介绍:对树的一些常用操作进行了封装,包括查询,插入,删除,遍历二叉树(中序,后序,前序) 以及以树的方式显示二对树的各个结点。-Program Descr iption: The tree of some common operations of the package, including the query, insert, delete, traversing a binary tree (in order, postorder, preorder), and the tree dis
  3. 所属分类:Java Develop

    • 发布日期:2017-03-31
    • 文件大小:3638
    • 提供者:hongji
  1. btree

    0下载:
  2. (1)二叉树的创建操作; (2)二叉树的销毁操作; (3)二叉树的先序遍历的递归算法; (4)二叉树的中序遍历的递归算法; (5)二叉树的后序遍历的递归算法; (6)二叉树的先序遍历的非递归算法; (7)二叉树的中序遍历的非递归算法; (8)二叉树的后序遍历的非递归算法; (9)二叉树的层次遍历算法; -(1) the creation of binary operations (2) the destruction of binary
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:205760
    • 提供者:不悔
  1. BTree

    0下载:
  2. 定义二叉树两个结点的最小距离为这两个结点的最近公共祖先分别到这两个结点的路径长度之和。请设计一种方法,找出给定二叉树中任意两个结点的最小距离,可以考虑以图形显示之。程序实现二叉树的层次遍历,要求每层之间的数据用一个空格分开。二叉树采用二叉链表方式进行存储-Defined binary minimum distance of two nodes for these two nodes were the most recent common ancestor of these two nodes a
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-08
    • 文件大小:1608502
    • 提供者:范吉伟
  1. tree

    0下载:
  2. 数据结构,堆栈操作,二叉树建立、遍历操作,哈夫曼树输入、编码译码-Data structures, stack operations, build a binary tree, traversal, Huffman tree input, coding and decoding
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3838
    • 提供者:yangd
  1. BinaryTree

    0下载:
  2. 数据结构算法(有关二叉树的)遍历啊 之类的-Data structure algorithm (for binary tree)
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:101647
    • 提供者:zhangshuo
  1. 8.2

    0下载:
  2. 利用二叉树层次遍历求二叉树的宽度(二叉树的宽度即二叉树同层结点数的最大值)(Judge the width of the two fork tree)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-25
    • 文件大小:2127872
    • 提供者:lyj
  1. Desktop

    0下载:
  2. 数据结构 java版本 二叉树的创建 序遍历,中序遍历,后序遍历 +考试题目(Ordered traversal, inorder traversal, backward traversal)
  3. 所属分类:其他

    • 发布日期:2017-12-21
    • 文件大小:54272
    • 提供者:迪迪五谷
  1. 二叉搜索树的创建与遍历

    0下载:
  2. 简单描述了一个二叉搜索树的创建,并且进行先序,后序,中序遍历。(A simple descr iption of the creation of a two fork search tree, and the first order, after the order, in the order traversal.)
  3. 所属分类:书籍源码

  1. java

    0下载:
  2. java编写二叉树,以及实现了二叉树的前序中序后序遍历(Achieve two binary tree preorder, in order, after traversal)
  3. 所属分类:Java编程

    • 发布日期:2017-12-19
    • 文件大小:17408
    • 提供者:大鲜果
  1. biTree

    0下载:
  2. ? 按先序遍历的扩展序列建立二叉树的二叉链表存储结构,实现二叉树先序、中序、后序遍历的递归算法,实现二叉树中序遍历的非递归算法,实现二叉树层次遍历的非递归算法(要求使用顺序队列,调用顺序队列基本操作实现),求二叉树的深度(后序遍历)。(Two binary linked list storage structure - first traversal of the extended sequence according to the establishment of the two fork t
  3. 所属分类:数据结构

    • 发布日期:2017-12-17
    • 文件大小:1024
    • 提供者:qiuqiu2017
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 50 »
搜珍网 www.dssz.com